home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / program / pdmake.arc / ASTAT.H next >
C/C++ Source or Header  |  1986-12-14  |  534b  |  20 lines

  1.     /************************************************\
  2.     *                        *
  3.     *    astat.h -    Retrofit <sys/stat.h>        *
  4.     *        for the Atari ST machines    *
  5.     *                        *
  6.     *    J.R. Bammi                    *
  7.     *                        *
  8.     \************************************************/
  9.  
  10. #define time_t    long
  11.  
  12. struct    stat
  13. {
  14.     char    st_sp1[21];    /* Junk        */
  15.     char    st_mode;    /* File attributes */
  16.     time_t  st_mod;    /* Mod time, we use the date & time as 1 long */
  17.     long    st_size;    /* File size       */
  18.     char    st_sp2[14];    /* File name       */
  19. };
  20.